home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 2.0 KB | 93 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _LINK_
- #define _LINK_
-
- #ifndef _LINKB_
- #include "LinkB.idl"
- #endif
-
- //==============================================================================
- // Theory of Operation
- //==============================================================================
-
- /*
- This class is used to represent the destination side of OpenDoc links.
- ODDrafts create and own these links. The source ODPart will ask the draft
- to create an ODLinkSource and an ODLink pair, and return the ODLink
- object to the the destination part. The destination part uses the ODLink
- object to extract the contents of the link.
- */
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
-
- interface ODLink;
-
- //==============================================================================
- // Classes used by this interface
- //==============================================================================
-
- interface ODStorageUnit;
- interface ODPart;
- interface ODPartList;
- interface ODLinkSource;
- interface ODDraft;
-
-
- //==============================================================================
- // ODLink
- //==============================================================================
-
- #ifdef _PLATFORM_MACINTOSH_
-
- interface ODLink : ODBaseLink
- {
- //# Additional Macintosh-specific methods
-
-
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somInit,
- somUninit,
-
- Purge,
- Externalize,
- ReleaseAll,
-
- Lock,
- Unlock,
- GetContentStorageUnit,
- RegisterDependent,
- UnregisterDependent,
- GetChangeID,
- GetChangeTime,
- GetStatus,
- ShowSourceContent,
- UpdateDependents,
- CloneTo;
-
- releaseorder:
- reserved1,
- reserved2,
- reserved3,
- reserved4,
- reserved5,
- reserved6,
- reserved7,
- reserved8,
- reserved9;
-
- majorversion = 1; minorversion = 0;
-
- };
- #endif
- };
-
- #endif //# _PLATFORM_MACINTOSH_
-
- #endif // _LINK_
-